### Lab4-1 ### # jquery 官網 https://jquery.com # 下載 jQuery 套件 https://jquery.com/download/ # jQuery CDN https://code.jquery.com ### Lab4-2 (4-1/hello.html) ### // 匯入 jquery // 載入自建的 hello.js ### Lab4-3 (4-1/hello.js) ### $(document).ready(function() { window.alert('Hello, jQuery!'); // 顯示一個消息和一個確認按鈕的警告框 }); ### Lab4-4 (4-2/text.html) ###

This is old text!

### Lab4-5 (4-2/text.js) ### $("p").text("Hello, jQery!")